home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / msql-2.0.7-1 / doc / new_features < prev   
Text File  |  1999-01-01  |  2KB  |  43 lines

  1. mSQL 2.0.7 Release
  2. ==================
  3.  
  4. mSQL
  5. ----
  6.     o Query Logging has been added to the backend.  If configured
  7.       to use it, the backend will log the time, date, user, remote
  8.       host, database, and query of every query it processes.  This
  9.       information can be used during debugging, as an audit trail,
  10.       or to recreate a database from a know checkpoint.
  11.  
  12.       To enable query logging, two new config items have been added.
  13.       Query_Log (boolean) default value of False
  14.       Query_Log_File (text) default value of INST_DIR/query.log
  15.  
  16.       As an aid to using the query log in an automated process, a
  17.       sample script called parse_query_log has been included in the
  18.       misc directory of the release.  This script shows you how to
  19.       read and process a query log.
  20.  
  21.  
  22. Lite / w3-mSQL
  23. --------------
  24.  
  25.     o The createVariable() function has been added to the standard
  26.       module to allow dynamic creation of variables.  It takes the
  27.       name and value of the variable as it's two args.  The name 
  28.       _MUST_ include wither a '$' for a local scope variable or a
  29.       '@' for global scope variables.  If the name does not start
  30.       with either '$' or '@' the function call fails.
  31.  
  32.       e.g.  createVariable("$myVariable","My Variable Value");
  33.         $foo = "$baa";
  34.         createVariable($foo, "The variable is called $baa");
  35.  
  36.     o To allow the generation of custom HTTP headers in w3-mSQL, the
  37.       addHttpHeader() function has been added.  This function takes
  38.       a single arg being the header to be inserted into the HTTP
  39.       header block.  It should not include the trailing new line.
  40.  
  41.       e.g. addHttpHeader("Loction: http://www.Hughes.com.au/new/");
  42.  
  43.